home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
dskut
/
fdform18.zip
/
GETBOOT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-07-21
|
402b
|
25 lines
USES baseconv;
VAR c: Byte;
f: FILE OF Byte;
g: Text;
i: Word;
BEGIN
Assign(f,ParamStr(1));
Assign(g,ParamStr(2));
Reset(f);
Rewrite(g);
Seek(f,62);
FOR i:=63 TO 512 DO BEGIN
Read(f,c);
if i<>512 then
write(g,'$',hexf(c,2),',')
else
write(g,'$',hexf(c,2));
IF i MOD 16=0 THEN WriteLn(g);
END;
Close(f);
Close(g);
END.